home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / SYMBOL / Symbol Processors / Find / find-common < prev    next >
Text File  |  1998-10-23  |  537b  |  12 lines

  1. find-common symbol-pattern1 symbol-pattern2
  2.  
  3. Finds what is common between symbol patterns. When working with rhythms, this function finds out what is common between two rhythms. This information is useful, if you plan to add more instruments, and want to avoid too many simultaneous notes. Create new instruments with a combination of fill-rests and find-common.
  4.  
  5. (find-common '(a b c d e) '(a (-1 b) c (+2 d) (e f g)))
  6. --> (a = c = e)
  7.  
  8. (fill-rest 
  9.     (find-common '(a b c d e) '(a (-1 b) c (+2 d) (e f g)))
  10.     '(h i))
  11. --> (= h = i =)
  12.